.creation-filter {
    width: 100%;
    height: fit-content;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.creation-filter form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.creation-filter select{
    height: 50px;
    margin: 5px;
}


/* ******************************************
* Bouton pour le filtre 
****************************************** */

.btn-search-filter {
    background: #61ad53;
    border: 2px solid black;
    color: black;
    font-weight: 700;
    height: 50px;
    margin: 15px;
    padding: 5px;
}

.btn-reset-filter {
    background: gray;
    padding: 5px;
    border: 2px solid gold;
    font-weight: 700;
    color: black;
    margin: 2px;
    height: 50px;
}

.btn-show-filter {
    background: gray;
    padding: 5px;
    border: 2px solid gold;
    font-weight: 700;
    color: black;
    margin: 2px;
    height: 50px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.btn-show-filter img {
    margin-left: 5px;
}



/* **************************************
*       Media Query pour TABLETTE
*************************************** */
@media (max-width: 768px) {
    .action-animation-filter {
        display: unset;
    }
   /* Styles de la barre des tâches */
    #creation-filter {
        position: fixed;
        top: 0;
        left: 0;
        width: 400px;
        height: 100%;
        background-color: #000000;
        color: white;
        overflow: auto;
        transform: translateX(-100%); /* Cache la barre par défaut */
        transition: transform 0.3s ease; /* Animation fluide */
        z-index: 999;
    }

    #creation-filter form {
        display: flex;
        justify-content: unset;
        align-items: unset;
        flex-direction: column;
        flex-wrap: wrap;
    }

    /* Classe pour afficher la barre */
    #creation-filter.active {
        transform: translateX(0); /* Position visible */
    }
}

/* **************************************
*       Media Query pour MOBILE
*************************************** */
@media (max-width: 480px) {
    .action-animation-filter {
        display: unset;
    }
    /* Styles de la barre des tâches */
    #creation-filter {
        position: fixed;
        top: 0;
        left: 0;
        width: 400px;
        height: 100%;
        background-color: #000000;
        color: white;
        overflow: auto;
        transform: translateX(-100%); /* Cache la barre par défaut */
        transition: transform 0.3s ease; /* Animation fluide */
        z-index: 999;
    }

    /* Classe pour afficher la barre */
    #creation-filter.active {
        transform: translateX(0); /* Position visible */
    }
}